home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 4
/
Gold Medal Software - Volume 4 (Gold Medal) (1994).iso
/
os2
/
pmps110.arj
/
UNINST.CMD
< prev
Wrap
OS/2 REXX Batch file
|
1994-06-08
|
667b
|
22 lines
/* Uninstall PMps */
call rxfuncadd 'sysloadfuncs', 'rexxutil', 'sysloadfuncs'
call sysloadfuncs
say "Do you really want to uninstall PMps? (y/n)"
pull response
if (response = "y") | (response = "Y") then do
say
say "Uninstalling PMps: please wait..."
say "Removing any PMps entries from OS/2 user ini files..."
call SysIni , 'PM Process Status', 'DELETE:'
if result \= Error then say " PMps entry removed"
say "PMps has been uninstalled. You may now delete any"
say "PMps program files from your disk."
say
say "If you have any suggestions or comments about PMps"
say "please e-mail them to pmps@arac.demon.co.uk"
end